What is the purpose of `group` and `group-hover` in Tailwind?
Description : `group` and `group-hover` allow hover effects on child elements.
Answer :
Tailwind’s `group` and `group-hover` utilities allow you to apply hover styles to child elements when the parent element is hovered. Add `group` to the parent and `group-hover` to the child element. For example:`<div class='group'><p class='group-hover:text-blue-500'>Text</p></div>` will change the text color when the parent is hovered.